home *** CD-ROM | disk | FTP | other *** search
/ Best of www.BestZips.com (Collector's Edition) / Best of WWW.BESTZIPS.COM Collector's Edition (JCSM Shareware) (JCS Marketing).ISO / bprogrms / mawin10c.zip / _SETUP.1 / Quotes.com.qcf < prev    next >
Text File  |  1997-01-06  |  7KB  |  125 lines

  1. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  2. // The Market Analyzer for Windows
  3. // (C) Copyright 1994, 1995, 1996, 1997
  4. //     by Jim Dowdle
  5. // Methods shown herein may be used for no other purpose than
  6. // creating and modifying configuration files for use with this product.
  7. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  8.  
  9. // QuoteList Configuration File
  10.  
  11. // for Quotes.com
  12.  
  13. // Located at: http://www.quote.com/
  14.  
  15. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  16.  
  17. // this file contains your Internet Site Path (URL) for the root .qtl file;
  18. // defines the download method;
  19. // and contains parsing instructions to be used by the MAWIN generic
  20. // parsing routines
  21.  
  22. // You may edit it as needed if you choose to change the Site used,
  23. // or if the Site format changes
  24.  
  25. // This method of specifying and decoding Web Pages has been chosen to make it
  26. // "easy" to adapt to new pages or changes in pre-defined pages.
  27. // Some users may not wish to get into this level of detail, and others may find
  28. // it easy to use this specifying/formatting scheme to add new pages to your
  29. // daily downloads, or just to keep up with changes.
  30.  
  31. // If you do not wish modify these files, pre-defined files and updates may become 
  32. // available in the near future.
  33.  
  34. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  35. // This is the Site URL including any prefix characters up to the qutoes to be added,
  36. // which will come from the .qtl file automatically as it executes
  37.  
  38. http://fast.quote.com/fq/quotecom/quote?symbols=
  39.  
  40. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  41. // the next entry must define the download method.
  42. // the entry will be either "by_page" or "by_quote"
  43. // "by_page" means the page inherently defines the quote information which will be received.
  44. // these are usually index pages which are predefined.
  45.  
  46. // "by_quote" means the quote requests will be appended from the .qtl file automatically
  47.  
  48. by_quote
  49.  
  50. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  51. // the next entry tells MAWIN what delimeter character to add between appended quote symbols
  52.  
  53. // for example:
  54. // www2.merrill-lynch.ml.com/htbin/indlink?tick=dis,hd,xrx,spq
  55. // could be a valid request for this page, and the delimeter ',' is used
  56. // other sites may use '+' or other characters as a delimeter
  57.  
  58. +
  59.  
  60. // (to determine what delimeter is used, bring up the page using your Web Browser,
  61. // request your stock quotes, and observe the delimeter used...usually shown in the
  62. // top text field of your Browser, as a part of the URL.)
  63.  
  64. // if the method is "by_page", enter nothing here; MAWIN will skip this field
  65. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  66. // next, tell MAWIN what character string to look for as a trigger to begin looking for quotes.
  67. // if you decide to customize your own download site, you can pick this string by first bringing
  68. // up the site using a Web Browser, and use "file save" to save the .htm image of the page.
  69. // then, examine the .htm file using any good text editor, such as WordPad, or Notepad.
  70. // first look for a string which will be used as a trigger to begin looking for quotes.
  71. // for this page, there are two types of quotes.  The first trigger phrase is:
  72.  
  73. Stock Quotes
  74.  
  75. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  76. // next, enter the trigger string which indicates the start of a quote
  77. // for this type, it is:
  78.  
  79. <TD ALIGN=LEFT>
  80.  
  81. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  82. // MAWIN will automatically find quote data fields as specified by format keywords herein:
  83. // The keywords which may be used are:
  84.  
  85. // Numeric Keyword Identifiers:
  86. // Hi, Low, Bid, Ask, Open, Close, Prev, Change, Volume, Date, PE_Ratio, Dividend, and Temp
  87. // "Temp" will be available to be used to store/handle throwaway numerics between quote data
  88. // "Temp" may be used multiple times
  89.  
  90. // Textual Keyword Identifiers:
  91. // Symbol, Co_name, Time
  92.  
  93. // for this file/site, the parsing commands are:
  94.  
  95. 9                        // lines per quote
  96. AutoDate          // will search for date field and remove before processing quote
  97. //NoDate            // Do Not look for Date field (none or manual specify)
  98. Symbol    Time    Open    Hi    Low    Close    Change    Volume
  99.  
  100. // up to 20 identifier types per quote may be specified
  101. // modifiers may be needed, to make adjustments of scale, such as this case where volume is
  102. // quoted in 1000's of shares, and must be adjusted to shares.
  103. // supported modifiers are '*' and '/'
  104.  
  105. //Volume * 1000
  106.  
  107. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  108. // for this page, there are two types of quotes.
  109. // The second trigger phrase and remaining commands are:
  110. // (currently, a maximum of 2 are allowed)
  111.  
  112. Mutual Fund Quotes        // begin looking for new quote pattern
  113. <TD ALIGN=LEFT>                // indicates start of quote
  114. 10                        // lines per quote
  115. AutoDate          // will search for date field and remove before processing quote
  116. Symbol    Time    Temp    Temp    Close    Change    Temp    Prev
  117.  
  118. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  119. // If you have pulled up this file by external brousing, note that it is also accessable
  120. // under the options menu from the MAWIN market analysis environment.
  121.  
  122. // lines which begin with // are ignored, and may be eliminated or reordered as you wish.
  123.  
  124. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  125.